home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / olrdrs / qprn112.zip / SMAN.BAT < prev    next >
DOS Batch File  |  1994-05-12  |  2KB  |  41 lines

  1. @echo off
  2. REM This batch file is for using QWKPRUNE with Session Manager.
  3. REM
  4. REM Copy it to the directory where Session Manager is located.
  5. REM
  6. REM In Session Manager's configuration, change your UN ZIP Spec
  7. REM to "SMAN.BAT" (without the quotes).  Session Manager will
  8. REM find the file and expand the filename to include the full path.
  9. REM If you have SMQINST, you can edit the Decompression program filespec.
  10. REM SMQINST will not find the file, so you should enter the full filespec,
  11. REM including path and extension.
  12. REM
  13. REM Session Manager's basic configuration routine doesn't accept parameters
  14. REM for the ZIP and UN ZIP programs.  If you use it, the unpacker has to be 
  15. REM entered directly in the batch file.
  16. REM
  17. REM The line "parmscan PKUNZIP %1" checks the first parameter to see if
  18. REM it contains "PKUNZIP".  If it doesn't, the batch file jumps to the
  19. REM :noparms label.  This should let you use this batch file in most
  20. REM cases, whether or not you have SMQINST.
  21. REM
  22. REM When Session Manager imports replies, they're unpacked into its
  23. REM work directory.  The lines "parmscan .REP %1 %2 %3 %4 %5 %6 %7 %8 %9" 
  24. REM and "if not errorlevel 1 exit" prevent QWKPRUNE from being called again
  25. REM in such cases.
  26. REM
  27. REM (4DOS users may replace these lines with
  28. REM "if %@index[%@upper[%1&],.REP] NE -1 quit".)
  29. REM
  30. parmscan PKUNZIP %1
  31. if errorlevel 1 goto noparms
  32. %1 %2 %3 %4 %5 %6 %7 %8 %9
  33. goto rscan
  34. :noparms
  35. pkunzip %1 %2 %3 %4 %5 %6 %7 %8 %9
  36. :rscan
  37. parmscan .REP %1 %2 %3 %4 %5 %6 %7 %8 %9
  38. if not errorlevel 1 exit
  39. if exist messages.dat qwkprune /m
  40.  
  41.